working register - traduzione in arabo
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

working register - traduzione in arabo

IMMEDIATELY ACCESSIBLE WORKING STORAGE AVAILABLE AS PART OF A DIGITAL PROCESSOR
CPU register; Processor registers; General purpose register; General purpose registers; Proccesor Register; Pointer register; General Purpose Register; Register width; Register (computer); Conditional register; Address register; Register (computing); Memory register; CPU registers; General-purpose register; GPR (Processor); GPR (processor); GPR (computer); GPR (Computer); General-purpose registers; SIMD register; Floating-point register; Scratch register; Working register; Vector registers; Register (CPU)

working register         
مسجل تشغيل / مسجل عمل
address register         
مسجل العناوين
address register         
‎ سِجِلُّ العُنْوَان‎

Definizione

working capital
Working capital is money which is available for use immediately, rather than money which is invested in land or equipment. (BUSINESS)
N-UNCOUNT

Wikipedia

Processor register

A processor register is a quickly accessible location available to a computer's processor. Registers usually consist of a small amount of fast storage, although some registers have specific hardware functions, and may be read-only or write-only. In computer architecture, registers are typically addressed by mechanisms other than main memory, but may in some cases be assigned a memory address e.g. DEC PDP-10, ICT 1900.

Almost all computers, whether load/store architecture or not, load items of data from a larger memory into registers where they are used for arithmetic operations, bitwise operations, and other operations, and are manipulated or tested by machine instructions. Manipulated items are then often stored back to main memory, either by the same instruction or by a subsequent one. Modern processors use either static or dynamic RAM as main memory, with the latter usually accessed via one or more cache levels.

Processor registers are normally at the top of the memory hierarchy, and provide the fastest way to access data. The term normally refers only to the group of registers that are directly encoded as part of an instruction, as defined by the instruction set. However, modern high-performance CPUs often have duplicates of these "architectural registers" in order to improve performance via register renaming, allowing parallel and speculative execution. Modern x86 design acquired these techniques around 1995 with the releases of Pentium Pro, Cyrix 6x86, Nx586, and AMD K5.

When a computer program accesses the same data repeatedly, this is called locality of reference. Holding frequently used values in registers can be critical to a program's performance. Register allocation is performed either by a compiler in the code generation phase, or manually by an assembly language programmer.